Extension point configuration
In component org.nuxeo.runtime.ts.TransientDataService
Documentation
Defines the implementations of the Transient Data stores:
<dataStore name="default">
<provider class="org.nuxeo.runtime.ts.MemTransientDataStore"/>
<ttl policy="CREATED">1d</ttl>
</dataStore>
The class must implement org.nuxeo.runtime.ts.TransientDataStoreProvider and provide a constructor taking org.nuxeo.runtime.ts.TransientDataStoreDescriptor as its only parameter.
Contribution Descriptors
- Class: org.nuxeo.runtime.ts.TransientDataStoreDescriptor
Existing Contributions
Contributions are presented in the same order as the registration order on this extension point. This order is displayed before the contribution name, in brackets.
-
<extension point="configuration" target="org.nuxeo.runtime.ts.TransientDataService"> <dataStore name="default"> <provider class="org.nuxeo.runtime.ts.KeyValueTransientDataStore"/> <ttl policy="CREATED">1d</ttl> </dataStore> </extension>
-
<extension point="configuration" target="org.nuxeo.runtime.ts.TransientDataService"> <dataStore name="userManager"> <ttl policy="ACCESSED">60m</ttl> </dataStore> </extension>